home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / constrain_test.tg < prev    next >
Encoding:
Text File  |  2001-10-20  |  611 b   |  14 lines

  1. ## constrain_test
  2. # this test constrains the job to execute at 4:10:33 PM but not after
  3. # 5:10:33 PM (constrained to one hour.)
  4. # effect: If you were to launch this job at:
  5. # 3:10:33 PM, it would NOT fire because we have not reached the trigger time yet (as expected.)
  6. # 4:10:33 PM, it would fire because we have reached the trigger time
  7. # 5:10:33 PM, it would fire because we have reached the trigger time and are within the window
  8. # 5:10:34 PM, it would NOT fire because we are outside the window
  9. {
  10.     -name constrain_test
  11.     -start -time 4:10:33 PM -constrain 0 1 0 0
  12.     -action -print Job executed
  13. }
  14.